(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <proto/arossupport.h>
void hexdump()
SYNOPSIS
const void * data
IPTR offset
ULONG count

FUNCTION
Prints a hexdump of the data beginning at data. The format is liks this:

xxxxxxxx: dddddddd dddddddd dddddddd dddddddd aaaaaaaaaaaaaaaa

Where x is the address (8 chars hex), dd is a data byte (2 chars hex) and a is the ASCII representation of a data byte or "." if the data byte is not printable.

INPUTS
data
Start here with the dump
offset
This offset is used as the address in the output. If you give 0L here, then the first address will be 00000000. If you give (IPTR)data here, then the first address will be the memory address of the data.
count
How many bytes to print.
RESULT
None.

NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
27.03.1997 digulla
Removed AROS/compiler/aros/

Removed logs

Added comments

Replaced proto/aros.h by proto/arossupport.h and the like

Makefile is less noisy now, too

27.03.1997 ldp
libaros.a -> libarossupport.a